const crypto/internal/nistec.p224ElementLength

18 uses

	crypto/internal/nistec (current package)
		p224.go#L18: const p224ElementLength = 28
		p224.go#L63: 	case len(b) == 1+2*p224ElementLength && b[0] == 4:
		p224.go#L64: 		x, err := new(fiat.P224Element).SetBytes(b[1 : 1+p224ElementLength])
		p224.go#L68: 		y, err := new(fiat.P224Element).SetBytes(b[1+p224ElementLength:])
		p224.go#L81: 	case len(b) == 1+p224ElementLength && (b[0] == 2 || b[0] == 3):
		p224.go#L97: 		cond := y.Bytes()[p224ElementLength-1]&1 ^ b[0]&1
		p224.go#L148: 	var out [1 + 2*p224ElementLength]byte
		p224.go#L152: func (p *P224Point) bytes(out *[1 + 2*p224ElementLength]byte) []byte {
		p224.go#L172: 	var out [p224ElementLength]byte
		p224.go#L176: func (p *P224Point) bytesX(out *[p224ElementLength]byte) ([]byte, error) {
		p224.go#L193: 	var out [1 + p224ElementLength]byte
		p224.go#L197: func (p *P224Point) bytesCompressed(out *[1 + p224ElementLength]byte) []byte {
		p224.go#L209: 	buf[0] |= y.Bytes()[p224ElementLength-1] & 1
		p224.go#L386: var p224GeneratorTable *[p224ElementLength * 2]p224Table
		p224.go#L392: func (p *P224Point) generatorTable() *[p224ElementLength * 2]p224Table {
		p224.go#L394: 		p224GeneratorTable = new([p224ElementLength * 2]p224Table)
		p224.go#L396: 		for i := 0; i < p224ElementLength*2; i++ {
		p224.go#L413: 	if len(scalar) != p224ElementLength {